home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / convert / coolview / view50_4.pas < prev   
Pascal/Delphi Source File  |  1995-03-05  |  570b  |  21 lines

  1. { View 50-lines screen in Text Mode          }
  2. { Coded '95 by Paradise, 1995.III.3          }
  3. { Lublin, Poland                             }
  4. { paradise@bachus.umcs.lublin.pl             }
  5. {                                            }
  6. { Example : OBJ usage example                }
  7. {                                            }
  8. { Need : view50_3.obj                        }
  9. {                                            }
  10. uses Crt;
  11.  
  12. {$f+}
  13. procedure Body; external;
  14. {$l view50_3.obj}
  15. {$f-}
  16.  
  17. begin
  18.  Body;
  19.  ReadKey;
  20.  asm  mov ax,3h; int 10h;  end;
  21. end.